home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Harmless / Fred / Source / MyView.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-26  |  505 b   |  40 lines

  1. /*
  2.  
  3. Fred
  4. An Obnoxious Little Application
  5. By Sean Luke
  6.  
  7. Uses DPS Timed Entry Procedures
  8.  
  9. Released:  April 1992
  10.  
  11.     Modified    Todd Anthony Nathan
  12.             April 10, 1992
  13.             Cleaned up code, and got slider to work
  14.     
  15.  
  16.  
  17. */
  18.  
  19.  
  20. #import <objc/Object.h>
  21. #include <math.h>
  22. #import <dpsclient/dpsclient.h>
  23. #import <appkit/appkit.h>
  24.  
  25.  
  26. @interface MyView:Object
  27. {
  28.     id        thisWindow,
  29.             theSlider;
  30.     double         interval,
  31.             priority;
  32.     DPSTimedEntry    teNum;
  33. }
  34.  
  35. - appDidInit:sender;
  36. - changeSpeed:sender;
  37. - appWillTerminate:sender;
  38.  
  39. @end
  40.